projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
14d9a66
)
(mouse-start-end): Put values in proper order,
author
Richard M. Stallman
<rms@gnu.org>
Thu, 26 Dec 1996 20:48:46 +0000
(20:48 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Thu, 26 Dec 1996 20:48:46 +0000
(20:48 +0000)
in the doublequote case.
lisp/mouse.el
patch
|
blob
|
history
diff --git
a/lisp/mouse.el
b/lisp/mouse.el
index d45c04cd9df9fbc1f20f8cced9558721f6256598..5613e73c3c1fea703ccefa232d4b0a7b8b591c05 100644
(file)
--- a/
lisp/mouse.el
+++ b/
lisp/mouse.el
@@
-685,14
+685,14
@@
If DIR is positive skip forward; if negative, skip backward."
(forward-sexp 1)
(point))
(error end))))
- (list (1+ start)
- (save-excursion
+ (list (save-excursion
(condition-case nil
(progn
(goto-char (1+ start))
(backward-sexp 1)
(point))
- (error end)))))))
+ (error end)))
+ (1+ start)))))
((= mode 1)
(list (save-excursion
(goto-char start)